Spread Windows Forms 12.0 Product Documentation
ComplexBorderSide Constructor(Color,Int32,DashStyle,Single[],Single[])
Example 


FarPoint.Win Assembly > FarPoint.Win Namespace > ComplexBorderSide Class > ComplexBorderSide Constructor : ComplexBorderSide Constructor(Color,Int32,DashStyle,Single[],Single[])
Color for this side of the border
Width of this side of the border, in pixels
Style of dashed line for this side of the border; a setting of the DashStyle enumeration of the Microsoft .NET Framework
Pattern of dashes for this side of the border
Array of values that specify a compound line made up of parallel lines and spaces
Creates one side of a four-sided, complex border with the specified color, width, dash style, dash pattern, and compound array.
Syntax
'Declaration
 
Public Function New( _
   ByVal color As Color, _
   ByVal width As Integer, _
   ByVal dashStyle As DashStyle, _
   ByVal dashPattern() As Single, _
   ByVal compoundArray() As Single _
)
'Usage
 
Dim color As Color
Dim width As Integer
Dim dashStyle As DashStyle
Dim dashPattern() As Single
Dim compoundArray() As Single
 
Dim instance As New ComplexBorderSide(color, width, dashStyle, dashPattern, compoundArray)
public ComplexBorderSide( 
   Color color,
   int width,
   DashStyle dashStyle,
   float[] dashPattern,
   float[] compoundArray
)

Parameters

color
Color for this side of the border
width
Width of this side of the border, in pixels
dashStyle
Style of dashed line for this side of the border; a setting of the DashStyle enumeration of the Microsoft .NET Framework
dashPattern
Pattern of dashes for this side of the border
compoundArray
Array of values that specify a compound line made up of parallel lines and spaces
Remarks

A complex border can have multiple lines. This is done by drawing a compound line with a pen that has the pattern defined in the compoundArray. The array of values specifies the starting point, the start of each line and the start of each spacing as a percentage of the total width of the pen.

The elements in the compound array must be in increasing order between 0 and 1.

For examples that show a complex border, refer to Creating a Complex Border with Multiple Lines.

For more details on the pen object, refer to the Compound Array for the Pen object in the Microsoft .NET Framework Reference documentation.

Example
This example creates one side of a four-sided, complex border with the specified color, width, dash style, dash pattern, and compound array.
FarPoint.Win.ComplexBorderSide side = new FarPoint.Win.ComplexBorderSide(Color.Red, 1.5, Drawing2D.DashStyle.Dash, new float() {0.33F, 0.5F, 0.66F, 1.0F}, new float() {0.33F, 0.5F, 0.66F, 1.0F});
FarPoint.Win.ComplexBorder bord = new FarPoint.Win.ComplexBorder(side);
Dim side As New FarPoint.Win.ComplexBorderSide(Color.Red, 1.5, Drawing2D.DashStyle.Dash, New Single() {0.33F, 0.5F, 0.66F, 1.0F}, New Single() {0.33F, 0.5F, 0.66F, 1.0F})
Dim bord As New FarPoint.Win.ComplexBorder(side)
See Also

Reference

ComplexBorderSide Class
ComplexBorderSide Members
Overload List
Creating a Complex Border with Multiple Lines